home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 8 / Eagles_Nest_Mac_Collection_Disc_8.TOAST / Developer Environments / AdaV401#3 / AdaV3 / test / SIMPLE.ADA / SIMPLE.ADA
Encoding:
Text File  |  1987-12-04  |  330 b   |  14 lines  |  [TEXT/????]

  1. --           Test program for Meridian Ada compiler.            --
  2. --        This program prints the numbers from 1 to 10.         --
  3. --      Copyright (C) 1986 Meridian Software Systems, Inc.      --
  4.  
  5. with ada_io; use ada_io;
  6. procedure simple is
  7. begin
  8.   for i in 1..10 loop
  9.     put(i);
  10.     put(' ');
  11.   end loop;
  12.   new_line;
  13. end;
  14.